how to disable link in hmtl

51

<style>
.isDisabled {
  color: currentColor;
  cursor: not-allowed;
  opacity: 0.5;
  text-decoration: none;
}
</style>
<a class="isDisabled" href="https://unfetteredthoughts.net">Disabled Link</a>
a.isDisabled {
  pointer-events: none;
}

Comments

Submit
0 Comments